for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
"use strict";
const Plugin = require('./Plugin');
/**
* Represent the leprechaun responsible of doing an action
*/
class ActorPlugin extends Plugin {
act() {
throw new Error("ActorPlugin::act() must be overridden !");
}
module.exports = ActorPlugin;